home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / newconf / FILES / inh.mkf < prev    next >
Encoding:
Text File  |  1992-08-27  |  1.4 KB  |  65 lines

  1. #
  2. #    inh.mkf
  3. #
  4. #    $Header: /private/postgres/newconf/FILES/RCS/inh.mkf,v 1.12 1992/04/01 01:49:54 mer Exp $
  5. #
  6. # inheritance nodes package files and all that
  7. #
  8.  
  9. # ----------------
  10. #
  11. # ----------------
  12. TARGET= INH
  13.  
  14. # ----------------
  15. #
  16. # ----------------
  17. GSD= $(SD)/lib/Gen
  18. HD= $(SD)/lib/H/nodes
  19. GOD= $(OD)/lib/Gen
  20.  
  21. # ACC_SRC = files from which we will generate "accessor" functions
  22. #
  23. ACC_SRC = $(SD)/lib/H/nodes/plannodes.h \
  24.     $(SD)/lib/H/nodes/primnodes.h \
  25.     $(SD)/lib/H/nodes/relation.h \
  26.     $(SD)/lib/H/nodes/execnodes.h
  27.  
  28. ACC_ISRC = $(GOD)/plannodes.i \
  29.        $(GOD)/primnodes.i \
  30.        $(GOD)/relation.i \
  31.        $(GOD)/execnodes.i
  32.  
  33. ACC_GEN = $(HD)/plannodes.gen \
  34.       $(HD)/primnodes.gen \
  35.       $(HD)/relation.gen \
  36.       $(HD)/execnodes.gen 
  37.  
  38. ACC_OBJ = $(GOD)/plannodes.o \
  39.       $(GOD)/primnodes.o \
  40.       $(GOD)/relation.o \
  41.       $(GOD)/execnodes.o
  42.  
  43. $(HD)/plannodes.gen: $(GOD)/plannodes.h
  44. $(HD)/primnodes.gen: $(GOD)/primnodes.h
  45. $(HD)/relation.gen: $(GOD)/relation.h
  46. $(HD)/execnodes.gen: $(GOD)/execnodes.h
  47.  
  48. $(GOD)/plannodes.o: $(GOD)/plannodes.h
  49. $(GOD)/primnodes.o: $(GOD)/primnodes.h
  50. $(GOD)/relation.o: $(GOD)/relation.h
  51. $(GOD)/execnodes.o: $(GOD)/execnodes.h
  52.  
  53. GENINH= $(SD)/lib/Gen/inherits.sh
  54.  
  55. # INH_SRC represents all header files in which there exists
  56. # a "class" definition
  57. #
  58.  
  59. INH_SRC = $(SD)/lib/H/nodes/nodes.h \
  60.     $(ACC_SRC) \
  61.     $(SD)/lib/H/nodes/mnodes.h \
  62.     $(SD)/lib/H/nodes/pg_lisp.h 
  63.  
  64. INH_OBJ= $(ACC_OBJ) $(GOD)/inh.o
  65.